/*MEMBERページcss*/
html{
  height: 100%;
}
body{
  background-color:#ffffff;
  //font-family: "BIZ UDPGothic", sans-serif;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 5px;
}
#wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.Mem_main{
  margin-top:106px;
  display: flex;
}
.Mem_contents{
  width:100vw;
}

/*MEMBER画像*/
.Mem_contents1{
  width: 100vw;
  height:400px;
  background-image:url("../image/member.png");
  background-size: cover;
  background-position: 0 25%;
}
.Mem_subcontents_mask{
  height:100%;
  background: rgba(255, 255, 255, 0.25);
}
.Mem_subcontents_title{
  color: #000000;
  font-size: 50px;
  padding-top: 150px;
  text-align: center;
}

/*スタッフ*/
.label_staff{
  width:300px;
  margin: 0 auto;
}
.acd-content_staff{
  height: auto;
  padding: 0 10px;
  display: block;
  text-align: center;
}
.acd-content_staff a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color:#000;
}
.acd-content_staff a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background: #000;
  opacity: 0.25;
  transition: .3s;
}
.acd-content_staff a:hover::after {
  bottom: -1px;
  opacity: 1;
  visibility: visible;
}
.staff{
  display: inline-block;
  padding-bottom: 5px;
}
.font{
  //font-family: "BIZ UDPGothic", sans-serif;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
h2 {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center;
}
h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*学生*/
.label_student{
  width:300px;
  margin: 0 auto;
}
.acd-check{
  display: none;
}
.acd-label{
  background: #005BAC;
  color: #fff;
  display: block;
  margin-bottom: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 60px;
  padding-left: 60px;
  position: relative;
  text-align: center;
  height: 30px;
}
.acd-label:after{
  background: #005BAC;
  box-sizing: border-box;
  content: '\f067';
  display: block;
  font-family: "Font Awesome 5 Free";
  height: 50px;
  padding: 10px 20px;
  position: absolute;
  right: 10px;
  top: 0px;
}
.acd-content{
  border: 1px solid #333;
  height: 0;
  padding: 0 10px;
  display: none;
  text-align: center;
}
.acd-check:checked + .acd-label:after{
  content: '\f068';
}
.acd-check:checked + .acd-label + .acd-content{
  height: auto;
  padding: 10px;
  display: block;
}

/*パンくずリスト*/
.breadcrumb{
  width : 100%;
  color: #000;
  text-align: left;
  height: 25px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
}
.breadcrumb a{
  color: #000;
  text-decoration: none;
}

/*ウィンドウサイズ別の指定*/
@media screen and (max-width:1000px){
  /*画面サイズが1000px以下の場合に適用*/
  .Mem_main{
    margin-top:62px;
  }
}
@media screen and (max-width:628px){
  /*画面サイズが628px以下の場合に適用*/
  .Mem_main{
    margin-top:114px;
  }
}